home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / program / lowpass.zip / LOWPASS.H < prev    next >
Text File  |  1991-11-20  |  614b  |  23 lines

  1. /* lowpass.h - Header file for LOWPASS sample application.
  2.  */
  3.  
  4.  
  5. /* Constants for dialogs.
  6.  */
  7. #define IDM_ABOUT       11          // menu items
  8.  
  9. #define ID_INPUTFILEEDIT    101     // input file name edit box
  10. #define ID_OUTPUTFILEEDIT   102     // output file name edit box
  11.  
  12.  
  13. /* Function Prototypes
  14.  */
  15. void DoLowPass(HWND hwnd);
  16. int PASCAL WinMain(HANDLE hInst, HANDLE hPrev, LPSTR lpszCmdLine, 
  17.     int iCmdShow);
  18. BOOL FAR PASCAL AboutDlgProc(HWND hwnd, unsigned wMsg,
  19.     WORD wParam, LONG lParam);
  20. BOOL FAR PASCAL LowPassDlgProc(HWND hwnd, unsigned wMsg,
  21.     WORD wParam, LONG lParam);
  22.  
  23.